home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Fiszkowe programy do nauki / jMemorize 1.2.3 / jMemorize-1.2.3-setup.exe / jMemorize-1.2.3.exe / build.xml next >
Extensible Markup Language  |  2006-09-26  |  5KB  |  116 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  4. <!-- iText, a JAVA - PDF library                                      -->
  5. <!-- $Id: build.xml,v 1.7 2006/09/25 21:08:07 xlv Exp $         -->
  6. <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  7.  
  8. <project name="iText" default="help" basedir=".">
  9.  
  10.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  11.     <!-- Help                                                             -->
  12.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  13.  
  14.     <target name="help" description="--> shows the help screen">
  15.         <echo>Using ANT for ${ant.project.name}</echo>
  16.         <echo />
  17.         <ant antfile="ant/download.xml" inheritAll="false" />
  18.         <ant antfile="ant/compile.xml" inheritAll="false" />
  19.         <ant antfile="ant/site.xml" inheritAll="false" />
  20.         <ant antfile="ant/release.xml" inheritAll="false" />
  21.     </target>
  22.  
  23.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  24.     <!-- Make a new release after exporting the modules src/www from CVS  -->
  25.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  26.     
  27.     <target name="release" description="--> builds a release after you have exported the src and www module from CVS">
  28.         <ant antfile="ant/download.xml" inheritAll="false" target="download.bin" />
  29.         <ant antfile="ant/release.xml" inheritAll="false" target="archive.src" />
  30.         <ant antfile="ant/release.xml" inheritAll="false" target="ant.zip" />
  31.         <ant antfile="ant/site.xml" inheritAll="false" target="docs.tar.gz" />
  32.         <ant antfile="ant/compile.xml" inheritAll="false" target="jar" />
  33.         <ant antfile="ant/site.xml" inheritAll="false" target="lowagie.com" />
  34.         <ant antfile="ant/release.xml" inheritAll="false" target="release.sf" />
  35.     </target>
  36.     
  37.     <target name="earlyaccess" description="--> builds a release after you have exported the src and www module from CVS">
  38.         <ant antfile="ant/download.xml" inheritAll="false" target="download.bin" />
  39.         <ant antfile="ant/release.xml" inheritAll="false" target="archive.src" />
  40.         <ant antfile="ant/release.xml" inheritAll="false" target="ant.zip" />
  41.         <ant antfile="ant/site.xml" inheritAll="false" target="docs.tar.gz" />
  42.         <ant antfile="ant/compile.xml" inheritAll="false" target="jar" />
  43.         <ant antfile="ant/site.xml" inheritAll="false" target="lowagie.com" />
  44.         <ant antfile="ant/release.xml" inheritAll="false" target="earlyaccess.sf" />
  45.     </target>
  46.  
  47.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  48.     <!-- Forwarding targetcalls to subscripts                             -->
  49.     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
  50.     
  51.     <target name="download">
  52.         <ant antfile="ant/download.xml" inheritAll="false" target="download" />
  53.     </target>
  54.     
  55.     <target name="download.bin">
  56.         <ant antfile="ant/download.xml" inheritAll="false" target="download.bin" />
  57.     </target>
  58.     
  59.     <target name="getFromCvs">
  60.         <ant antfile="ant/download.xml" inheritAll="false" target="getFromCvs" />
  61.     </target>
  62.     
  63.     <target name="compile">
  64.         <ant antfile="ant/compile.xml" inheritAll="false" target="compile" />
  65.     </target>
  66.     
  67.     <target name="compile.debug">
  68.         <ant antfile="ant/compile.xml" inheritAll="false" target="compile.debug" />
  69.     </target>
  70.     
  71.     <target name="jar">
  72.         <ant antfile="ant/compile.xml" inheritAll="false" target="jar" />
  73.     </target>
  74.     
  75.     <target name="jar.debug">
  76.         <ant antfile="ant/compile.xml" inheritAll="false" target="jar.debug" />
  77.     </target>
  78.     
  79.     <target name="update-parser">
  80.         <ant antfile="ant/compile.xml" inheritAll="false" target="update-parser" />
  81.     </target>
  82.     
  83.     <target name="javadoc">
  84.         <ant antfile="ant/site.xml" inheritAll="false" target="javadoc" />
  85.     </target>
  86.     
  87.     <target name="docs.tar.gz">
  88.         <ant antfile="ant/site.xml" inheritAll="false" target="docs.tar.gz" />
  89.     </target>
  90.     
  91.     <target name="lowagie.com">
  92.         <ant antfile="ant/site.xml" inheritAll="false" target="lowagie.com" />
  93.     </target>
  94.     
  95.     <target name="tutorial">
  96.         <ant antfile="ant/site.xml" inheritAll="false" target="tutorial" />
  97.     </target>
  98.     
  99.     <target name="tutorial.tar.gz">
  100.         <ant antfile="ant/site.xml" inheritAll="false" target="tutorial.tar.gz" />
  101.     </target>
  102.     
  103.     <target name="archive.src">
  104.         <ant antfile="ant/release.xml" inheritAll="false" target="archive.src" />
  105.     </target>
  106.     
  107.     <target name="ant.zip">
  108.         <ant antfile="ant/release.xml" inheritAll="false" target="ant.zip" />
  109.     </target>
  110.     
  111.     <target name="changelog">
  112.         <ant antfile="ant/release.xml" inheritAll="false" target="changelog" />
  113.     </target>
  114.     
  115. </project>
  116.